1 package org.saf.struts.exception; 2 3 import org.apache.commons.lang.exception.NestableException; 4 5 6 public class SafException extends NestableException { 7 private static final long serialVersionUID = 1L; 8 9 /*** 10 * Creates a new SafException object. 11 */ 12 public SafException() { 13 super(); 14 } 15 16 /*** 17 * Creates a new SafException object. 18 * 19 * @param msg The error message. 20 * @param throwable The throwable object. 21 */ 22 public SafException(String msg, Throwable throwable) { 23 super(msg, throwable); 24 } 25 26 /*** 27 * Creates a new SafException object. 28 * 29 * @param msg The error message. 30 */ 31 public SafException(String msg) { 32 super(msg); 33 } 34 35 /*** 36 * Creates a new SafException object. 37 * 38 * @param throwable The throwable object. 39 */ 40 public SafException(Throwable throwable) { 41 super(throwable); 42 } 43 }